home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / INTERNET / PGP / PGP263I / pgp263i / src / h / randpool < prev    next >
Encoding:
Text File  |  1997-05-23  |  255 b   |  10 lines

  1. #include "usuals.h"
  2.  
  3. /* Set this to whatever you need (must be > 512) */
  4. #define RANDPOOLBITS 3072
  5.  
  6. void randPoolStir(void);
  7. void randPoolAddBytes(byte const *buf, unsigned len);
  8. void randPoolGetBytes(byte *buf, unsigned len);
  9. byte randPoolGetByte(void);
  10.